home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / os2emxpath.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  11KB  |  394 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Common pathname manipulations, OS/2 EMX version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. __all__ = [
  12.     'normcase',
  13.     'isabs',
  14.     'join',
  15.     'splitdrive',
  16.     'split',
  17.     'splitext',
  18.     'basename',
  19.     'dirname',
  20.     'commonprefix',
  21.     'getsize',
  22.     'getmtime',
  23.     'getatime',
  24.     'getctime',
  25.     'islink',
  26.     'exists',
  27.     'lexists',
  28.     'isdir',
  29.     'isfile',
  30.     'ismount',
  31.     'walk',
  32.     'expanduser',
  33.     'expandvars',
  34.     'normpath',
  35.     'abspath',
  36.     'splitunc',
  37.     'curdir',
  38.     'pardir',
  39.     'sep',
  40.     'pathsep',
  41.     'defpath',
  42.     'altsep',
  43.     'extsep',
  44.     'devnull',
  45.     'realpath',
  46.     'supports_unicode_filenames']
  47. curdir = '.'
  48. pardir = '..'
  49. extsep = '.'
  50. sep = '/'
  51. altsep = '\\'
  52. pathsep = ';'
  53. defpath = '.;C:\\bin'
  54. devnull = 'nul'
  55.  
  56. def normcase(s):
  57.     '''Normalize case of pathname.
  58.  
  59.     Makes all characters lowercase and all altseps into seps.'''
  60.     return s.replace('\\', '/').lower()
  61.  
  62.  
  63. def isabs(s):
  64.     '''Test whether a path is absolute'''
  65.     s = splitdrive(s)[1]
  66.     if s != '':
  67.         pass
  68.     return s[:1] in '/\\'
  69.  
  70.  
  71. def join(a, *p):
  72.     '''Join two or more pathname components, inserting sep as needed'''
  73.     path = a
  74.     for b in p:
  75.         if isabs(b):
  76.             path = b
  77.             continue
  78.         if path == '' or path[-1:] in '/\\:':
  79.             path = path + b
  80.             continue
  81.         path = path + '/' + b
  82.     
  83.     return path
  84.  
  85.  
  86. def splitdrive(p):
  87.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  88. "(drive,path)";  either part may be empty'''
  89.     if p[1:2] == ':':
  90.         return (p[0:2], p[2:])
  91.     
  92.     return ('', p)
  93.  
  94.  
  95. def splitunc(p):
  96.     """Split a pathname into UNC mount point and relative path specifiers.
  97.  
  98.     Return a 2-tuple (unc, rest); either part may be empty.
  99.     If unc is not empty, it has the form '//host/mount' (or similar
  100.     using backslashes).  unc+rest is always the input path.
  101.     Paths containing drive letters never have an UNC part.
  102.     """
  103.     if p[1:2] == ':':
  104.         return ('', p)
  105.     
  106.     firstTwo = p[0:2]
  107.     if firstTwo == '//' or firstTwo == '\\\\':
  108.         normp = normcase(p)
  109.         index = normp.find('/', 2)
  110.         if index == -1:
  111.             return ('', p)
  112.         
  113.         index = normp.find('/', index + 1)
  114.         if index == -1:
  115.             index = len(p)
  116.         
  117.         return (p[:index], p[index:])
  118.     
  119.     return ('', p)
  120.  
  121.  
  122. def split(p):
  123.     '''Split a pathname.
  124.  
  125.     Return tuple (head, tail) where tail is everything after the final slash.
  126.     Either part may be empty.'''
  127.     (d, p) = splitdrive(p)
  128.     i = len(p)
  129.     while i and p[i - 1] not in '/\\':
  130.         i = i - 1
  131.     head = p[:i]
  132.     tail = p[i:]
  133.     head2 = head
  134.     while head2 and head2[-1] in '/\\':
  135.         head2 = head2[:-1]
  136.     if not head2:
  137.         pass
  138.     head = head
  139.     return (d + head, tail)
  140.  
  141.  
  142. def splitext(p):
  143.     '''Split the extension from a pathname.
  144.  
  145.     Extension is everything from the last dot to the end.
  146.     Return (root, ext), either part may be empty.'''
  147.     (root, ext) = ('', '')
  148.     for c in p:
  149.         None if c in ('/', '\\') else ext
  150.         if ext:
  151.             ext = ext + c
  152.             continue
  153.         root = root + c
  154.     
  155.     return (root, ext)
  156.  
  157.  
  158. def basename(p):
  159.     '''Returns the final component of a pathname'''
  160.     return split(p)[1]
  161.  
  162.  
  163. def dirname(p):
  164.     '''Returns the directory component of a pathname'''
  165.     return split(p)[0]
  166.  
  167.  
  168. def commonprefix(m):
  169.     '''Given a list of pathnames, returns the longest common leading component'''
  170.     if not m:
  171.         return ''
  172.     
  173.     s1 = min(m)
  174.     s2 = max(m)
  175.     n = min(len(s1), len(s2))
  176.     for i in xrange(n):
  177.         if s1[i] != s2[i]:
  178.             return s1[:i]
  179.             continue
  180.     
  181.     return s1[:n]
  182.  
  183.  
  184. def getsize(filename):
  185.     '''Return the size of a file, reported by os.stat()'''
  186.     return os.stat(filename).st_size
  187.  
  188.  
  189. def getmtime(filename):
  190.     '''Return the last modification time of a file, reported by os.stat()'''
  191.     return os.stat(filename).st_mtime
  192.  
  193.  
  194. def getatime(filename):
  195.     '''Return the last access time of a file, reported by os.stat()'''
  196.     return os.stat(filename).st_atime
  197.  
  198.  
  199. def getctime(filename):
  200.     '''Return the creation time of a file, reported by os.stat().'''
  201.     return os.stat(filename).st_ctime
  202.  
  203.  
  204. def islink(path):
  205.     '''Test for symbolic link.  On OS/2 always returns false'''
  206.     return False
  207.  
  208.  
  209. def exists(path):
  210.     '''Test whether a path exists'''
  211.     
  212.     try:
  213.         st = os.stat(path)
  214.     except os.error:
  215.         return False
  216.  
  217.     return True
  218.  
  219. lexists = exists
  220.  
  221. def isdir(path):
  222.     '''Test whether a path is a directory'''
  223.     
  224.     try:
  225.         st = os.stat(path)
  226.     except os.error:
  227.         return False
  228.  
  229.     return stat.S_ISDIR(st.st_mode)
  230.  
  231.  
  232. def isfile(path):
  233.     '''Test whether a path is a regular file'''
  234.     
  235.     try:
  236.         st = os.stat(path)
  237.     except os.error:
  238.         return False
  239.  
  240.     return stat.S_ISREG(st.st_mode)
  241.  
  242.  
  243. def ismount(path):
  244.     '''Test whether a path is a mount point (defined as root of drive)'''
  245.     (unc, rest) = splitunc(path)
  246.     if unc:
  247.         return rest in ('', '/', '\\')
  248.     
  249.     p = splitdrive(path)[1]
  250.     if len(p) == 1:
  251.         pass
  252.     return p[0] in '/\\'
  253.  
  254.  
  255. def walk(top, func, arg):
  256.     '''Directory tree walk whth callback function.
  257.  
  258.     walk(top, func, arg) calls func(arg, d, files) for each directory d
  259.     in the tree rooted at top (including top itself); files is a list
  260.     of all the files and subdirs in directory d.'''
  261.     
  262.     try:
  263.         names = os.listdir(top)
  264.     except os.error:
  265.         return None
  266.  
  267.     func(arg, top, names)
  268.     exceptions = ('.', '..')
  269.     for name in names:
  270.         if name not in exceptions:
  271.             name = join(top, name)
  272.             if isdir(name):
  273.                 walk(name, func, arg)
  274.             
  275.         isdir(name)
  276.     
  277.  
  278.  
  279. def expanduser(path):
  280.     '''Expand ~ and ~user constructs.
  281.  
  282.     If user or $HOME is unknown, do nothing.'''
  283.     if path[:1] != '~':
  284.         return path
  285.     
  286.     i = 1
  287.     n = len(path)
  288.     while i < n and path[i] not in '/\\':
  289.         i = i + 1
  290.     if i == 1:
  291.         if 'HOME' in os.environ:
  292.             userhome = os.environ['HOME']
  293.         elif 'HOMEPATH' not in os.environ:
  294.             return path
  295.         else:
  296.             
  297.             try:
  298.                 drive = os.environ['HOMEDRIVE']
  299.             except KeyError:
  300.                 drive = ''
  301.  
  302.             userhome = join(drive, os.environ['HOMEPATH'])
  303.     else:
  304.         return path
  305.     return userhome + path[i:]
  306.  
  307.  
  308. def expandvars(path):
  309.     '''Expand shell variables of form $var and ${var}.
  310.  
  311.     Unknown variables are left unchanged.'''
  312.     if '$' not in path:
  313.         return path
  314.     
  315.     import string as string
  316.     varchars = string.letters + string.digits + '_-'
  317.     res = ''
  318.     index = 0
  319.     pathlen = len(path)
  320.     while index < pathlen:
  321.         c = path[index]
  322.         if c == "'":
  323.             path = path[index + 1:]
  324.             pathlen = len(path)
  325.             
  326.             try:
  327.                 index = path.index("'")
  328.                 res = res + "'" + path[:index + 1]
  329.             except ValueError:
  330.                 res = res + path
  331.                 index = pathlen - 1
  332.             except:
  333.                 None<EXCEPTION MATCH>ValueError
  334.             
  335.  
  336.         None<EXCEPTION MATCH>ValueError
  337.         if c == '$':
  338.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  339.             var = ''
  340.             index = index + 1
  341.             c = path[index:index + 1]
  342.             while c != '' and c in varchars:
  343.                 var = var + c
  344.                 index = index + 1
  345.                 c = path[index:index + 1]
  346.             if var in os.environ:
  347.                 res = res + os.environ[var]
  348.             
  349.             if c != '':
  350.                 res = res + c
  351.             
  352.         else:
  353.             res = res + c
  354.         index = index + 1
  355.     return res
  356.  
  357.  
  358. def normpath(path):
  359.     '''Normalize path, eliminating double slashes, etc.'''
  360.     path = path.replace('\\', '/')
  361.     (prefix, path) = splitdrive(path)
  362.     while path[:1] == '/':
  363.         prefix = prefix + '/'
  364.         path = path[1:]
  365.     comps = path.split('/')
  366.     i = 0
  367.     while i < len(comps):
  368.         if comps[i] == '.':
  369.             del comps[i]
  370.             continue
  371.         if comps[i] == '..' and i > 0 and comps[i - 1] not in ('', '..'):
  372.             del comps[i - 1:i + 1]
  373.             i = i - 1
  374.             continue
  375.         if comps[i] == '' and i > 0 and comps[i - 1] != '':
  376.             del comps[i]
  377.             continue
  378.         i = i + 1
  379.     if not prefix and not comps:
  380.         comps.append('.')
  381.     
  382.     return prefix + '/'.join(comps)
  383.  
  384.  
  385. def abspath(path):
  386.     '''Return the absolute version of a path'''
  387.     if not isabs(path):
  388.         path = join(os.getcwd(), path)
  389.     
  390.     return normpath(path)
  391.  
  392. realpath = abspath
  393. supports_unicode_filenames = False
  394.